home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / iv.dir / 00031_Monitor Callback.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  848 b   |  25 lines

  1. on mouseUp
  2.   global givState, givBASEMONITORSPRITE, givFullPath
  3.   set clik to the clickOn - givBASEMONITORSPRITE
  4.   if count(GetMonitorListByNumber(clik)) = 0 then
  5.     exit
  6.   end if
  7.   if ((the mode of givState = #play) and ((clik = 2) or ((clik = 3) and (count(the editList of givState) < 1)) or (clik = 5))) or (count(GetMonitorListByNumber(clik)) = 0) then
  8.     nothing()
  9.   else
  10.     SetActiveMonitor(clik)
  11.     if the doubleClick and (the mode of givState = #edit) then
  12.       EditListAdd()
  13.     end if
  14.     if the doubleClick and (the mode of givState = #play) then
  15.       if (clik = 3) and (count(the editList of givState) > 0) then
  16.         set the editListPlaybackPtr of givState to 1
  17.         EditListPlay(1, #play)
  18.       else
  19.         set the selectListPlaybackPtr of givState to 1
  20.         PlayActiveVideo(#play)
  21.       end if
  22.     end if
  23.   end if
  24. end
  25.